How to Dockerize an ExpressJS App ?
Docker is an open-source containerization platform used for building, running, and managing applications in an isolated environment. A container is isolated from another and bundles its software, libraries, and configuration files. This article will discuss how to dockerize an Express app for the development and deployment phases....
read more
How to install and use lite-server in your Project ?
Lite-server is a lightweight development server that serves a web application, opens it in the browser, and refreshes the page when HTML or JavaScript changes are made to the source code. This can help save time during development as the user does not manually have to refresh the page every time a change is made. The following steps have to be followed to install and use lite-server:...
read more
How to Install PHP Soap Extension?
PHP is a general-purpose scripting language that is mainly used for Web development to built dynamic and interactive web pages. Because of its free availability and efficiency, it is widely used among web developers. It has many extensions to get and use web services to make the website more interactive. One of the famous php extension is the SOAP extension. Simple Object Access Protocol simply called as “SOAP” is a protocol to provide and consume Webservices. The SOAP extension is language and platform independent so, it is widely used and easy to use. It is an XML-based messaging protocol mainly used for message broadcasting. It defines the information which is sent and how it is sent. REST API is the competitor for SOAP extension. Nowadays, REST API is getting popular. You can also use SOAP extensions not only for Web development but also for Mobile applications. So, let us see how to install PHP Soap Extension in this article....
read more
How to install modules without npm in node.js ?
We can install modules required for a particular project in node.js without npm, the recommended node package manager using yarn. Yarn is a wonderful package manager. Like npm, if you have a project folder with package.json containing all the required dependencies mentioned for the project, you can use yarn to install all the dependencies....
read more
How to Build Simple Terminal like Website using jQuery ?
Terminal is one of the most common tool used by developers. Many applications, frameworks, and even programming languages have more function which can be invoked using command line interface. Most of the computers come with at least one terminal in their operating system with command prompt now most replaced by cross-platform powershell in windows, and Linux console in Linux based OS’s....
read more
How to Install PHP Extension in cPanel?
PHP (Hypertext Preprocessor) is known as a broadly useful prearranging language that can be utilized to foster dynamic and intelligent sites. It was among the main server-side dialects that could be inserted into HTML, making it more straightforward to add usefulness to pages without expecting to call outer records for information....
read more
How to Install Git on Raspberry Pi?
Git is a widely used version control system that allows developers to track changes in their code and collaborate effectively. Installing Git on a Raspberry Pi helps you manage your projects directly from this versatile and affordable device. This guide will walk you through the steps to install Git on a Raspberry Pi....
read more
How to use cURL via a proxy ?
This tutorial will show the way to use a proxy with PHP’s cURL functions. In this tutorial, we’ll send our HTTP request via a selected proxy IP address and port....
read more
How to Install imap extension in PHP on Linux?
The Internet Message Access Protocol (IMAP) is an application layer protocol that allows a client to efficiently access emails from anywhere. It stores email on the server and can download on-demand. It is like an intermediary between client and email servers. It was designed by Mark Crispin in 1986 as a remote access mailbox protocol and the current version of IMAP is IMAP4....
read more
Spring Boot | How to publish String messages on Apache Kafka
Apache Kafka is a publish-subscribe messaging system. A messaging queue lets you send messages between processes, applications, and servers. In this article, we will see how to send string messages to Apache Kafka in a spring boot application....
read more
How to Protect Your Private Email Addresses in Git & Github?
Protecting sensitive information such as private email addresses is important to prevent unauthorized access, identity theft, and spam. Git and GitHub offer various mechanisms to safeguard private email addresses within repositories....
read more
Text portrait using CSS
Text portraits are a fascinating way to blend typography and visual art. In this article, we will learn to create a text portrait using CSS in a few simple steps. If you want to know, then keep reading this article. We have specified all the steps you need to take. So let’s start designing the text portrait....
read more